home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / nosvw.zip / FKEY < prev    next >
Text File  |  1991-09-18  |  3KB  |  64 lines

  1. ====                                                NOSview [137]
  2. fkey
  3. ====
  4.  
  5. The 'fkey' command allows you to program the function keys and
  6. several other cursor control keys.
  7.  
  8. _________________________________________________________________
  9. fkey
  10. _________________________________________________________________
  11. Display the key_numbers for the function keys.  This command
  12. produces the following output:
  13.  
  14. ............................................................
  15. : key num    key  num    key  num    key  num    key   num :
  16. : f1   59    sf1   84    cf1   94    af1  104    pgup   73 :
  17. : f2   60    sf2   85    cf2   95    af2  105    pgdn   81 :
  18. : f3   61    sf3   86    cf3   96    af3  106    home   71 :
  19. : f4   62    sf4   87    cf4   97    af4  107    end    79 :
  20. : f5   63    sf5   88    cf5   98    af5  108    arup   72 :
  21. : f6   64    sf6   89    cf6   99    af6  109    ardn   80 :
  22. : f7   65    sf7   90    cf7  100    af7  110    ar l   75 :
  23. : f8   66    sf8   91    cf8  101    af8  111    ar r   77 :
  24. : f9   67    sf9   92    cf9  102    af9  112    ins    82 :
  25. : f10  68    sf10  93    cf10 103    af10 113    del    83 :
  26. :..........................................................:
  27.  
  28. 'fn'  refers to Function_key_n
  29. 'sfn' refers to SHIFT-Function_key_n
  30. 'cfn' refers to CTRL-Function_key_n
  31. 'afn' refers to ALT-Function_key_n
  32. 'ar'  refers to the arrow keys
  33.  
  34. _________________________________________________________________
  35. fkey <key_number> [<value> | "<string>" ]
  36. _________________________________________________________________
  37. Display or define a new setting for a function key.
  38.  
  39. Control characters can be included in the string by prefixing
  40. with the ^ character (SHIFT 6 on most keyboards); e.g. CR is
  41. entered as ^M.  To insert a ^ in the string, enter ^^.
  42.  
  43. >> Examples:  fkey 87 "trace tnc0 211^M"  (SHIFT-F4 turns trace
  44.                                              on)
  45.               fkey 72 ""                  (disable up arrow)
  46.  
  47. Mappings for a VT100/ANSI keyboard:
  48.  
  49.    number  string    key
  50.      59   " 33OP"  /* F1 */
  51.      60   " 33OQ"  /* F2 */
  52.      61   " 33OR"  /* F3 */
  53.      62   " 33OS"  /* F4 */
  54.      71   " 10"    /* home*/
  55.      72   " 33[A"  /* up arrow*/
  56.      73   " 25"    /* pgup */
  57.      75   " 33[D"  /* left arrow */
  58.      77   " 33[C"  /* right arrow */
  59.      79   " 05"    /* end */
  60.      80   " 33[B"  /* down arrow */
  61.      81   " 12"    /* pgdn */
  62.      82   " 01"    /* ins */
  63.      83   " 177"   /* del */
  64.